net/http.http2ClientConn.streams (field)

19 uses

	net/http (current package)
		h2_bundle.go#L7805: 	streams          map[uint32]*http2clientStream // client-initiated
		h2_bundle.go#L8255: 		streams:                     make(map[uint32]*http2clientStream),
		h2_bundle.go#L8376: 	for streamID, cs := range cc.streams {
		h2_bundle.go#L8467: 		StreamsActive:        len(cc.streams) + cc.pendingResets,
		h2_bundle.go#L8528: 	return len(cc.streams) + cc.streamsReserved + cc.pendingResets
		h2_bundle.go#L8576: 	if len(cc.streams) > 0 || cc.streamsReserved > 0 {
		h2_bundle.go#L8594: 	return cc.doNotReuse && len(cc.streams) == 0
		h2_bundle.go#L8612: 			if len(cc.streams) == 0 || cc.closed {
		h2_bundle.go#L8667: 	for _, cs := range cc.streams {
		h2_bundle.go#L9767: 	cc.streams[cs.ID] = cs
		h2_bundle.go#L9775: 	slen := len(cc.streams)
		h2_bundle.go#L9776: 	delete(cc.streams, id)
		h2_bundle.go#L9777: 	if len(cc.streams) != slen-1 {
		h2_bundle.go#L9781: 	if len(cc.streams) == 0 && cc.idleTimer != nil {
		h2_bundle.go#L9790: 	if closeOnIdle && cc.streamsReserved == 0 && len(cc.streams) == 0 {
		h2_bundle.go#L9884: 	for _, cs := range cc.streams {
		h2_bundle.go#L10476: 	cs := rl.cc.streams[id]
		h2_bundle.go#L10560: 			for _, cs := range cc.streams {
		h2_bundle.go#L10910: 	ci.WasIdle = len(cc.streams) == 0 && reused